home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / httpd_nobody.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10484);
  10.  script_version ("$Revision: 1.9 $");
  11.  
  12.  name["english"] = "Read any file thanks to ~nobody/";
  13.  name["francais"] = "Read any file thanks to ~nobody/";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "
  17. It is possible to access arbitrary files on the remote
  18. web server by appending ~nobody/ in front of their
  19. name (as in ~nobody/etc/passwd).
  20.  
  21. This problem is due to a misconfiguration in your Apache
  22. server that sets UserDir to ./.
  23.  
  24. Solution : Set UserDir to public_html/ or something else
  25. Risk factor : High";
  26.  
  27.  
  28.  desc["francais"] = "
  29. Il est possible de lire des fichiers arbitraires sur l'hote
  30. distant en rajoutant ~nobody devant leur nom (comme dans
  31. ~nobody/etc/passwd).
  32.  
  33. Ce problΦme est vraisemblablement du α une mauvaise configuration
  34. d'Apache qui met UserDir α './' au lieu d'autre chose.
  35.  
  36. Solution : changez la valeur de UserDir dans le fichier de configuration
  37. d'Apache en quelque chose d'autre (public_html par exemple)
  38. Facteur de risque : SΘrieux";
  39.  
  40.  
  41.  script_description(english:desc["english"], francais:desc["francais"]);
  42.  
  43.  summary["english"] = "Checks for the presence of /~nobody/etc/passwd";
  44.  summary["francais"] = "VΘrifie la prΘsence de /~nobody/etc/passwd";
  45.  
  46.  script_summary(english:summary["english"], francais:summary["francais"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  52.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  53.  family["english"] = "CGI abuses";
  54.  family["francais"] = "Abus de CGI";
  55.  script_family(english:family["english"], francais:family["francais"]);
  56.  script_dependencie("find_service.nes", "no404.nasl");
  57.  script_require_ports("Services/www", 80);
  58.  exit(0);
  59. }
  60.  
  61. #
  62. # The script code starts here
  63. #
  64. include("http_func.inc");
  65. port = get_http_port(default:80);
  66.  
  67. if(get_port_state(port))
  68. {
  69.  soc = http_open_socket(port);
  70.  if(soc)
  71.  {  
  72.   req = http_get(item:"/~nobody/etc/passwd", port:port);
  73.   send(socket:soc, data:req);
  74.   r = http_recv(socket:soc);
  75.   http_close_socket(soc);
  76.   if(egrep(pattern:".*root:.*:0:[01]:.*", string:r))security_hole(port);
  77.  }
  78. }
  79.  
  80.